home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
network
/
usrpr103.zip
/
GETADDR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-06-26
|
395b
|
19 lines
#include <dos.h>
#include <stdio.h>
#include <stdlib.h>
void GetHWAddr(char *s)
{
if( check_nwaddr( s ) ) return; // first check for netware
if( check_wdaddr( s ) ) return; // then try western digital
// This next line is dangerous. Use only if you know what the port is.
// if( check_3Caddr( port , s ) ) return;
printf("Unable to find Card Address.\n");
exit(1);
}